* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.main-navbar {
  background-color: #0055ff;
  padding: 0;
}

.angle-logo {
  background: white;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  padding: 30px 55px 30px 30px;
  display: flex;
  align-items: center;
  border: 5px dashed black;
  border-right: none;
  border-left: none;
}

.main-navbar .nav-link {
  color: #fff;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  font-size: 1.3rem;
}

.main-navbar .nav-link:hover {
  color: #ffd900 !important;
  transform: translateY(-2px);
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffd900;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.main-navbar .nav-link:hover::after {
  width: 100%;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

.main-navbar .dropdown-menu {
  background: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  animation: fadeInDropdown 0.5s ease-in-out forwards;
}

@keyframes fadeInDropdown {
  from {
    transform: scaleY(0.95);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.dropdown-menu .dropdown-item {
  opacity: 0;
  transform: translateY(12px);
  animation: itemFadeIn 0.6s ease-in-out forwards;
}

.dropdown.show .dropdown-menu .dropdown-item:nth-child(1) {
  animation-delay: 0.2s;
}

.dropdown.show .dropdown-menu .dropdown-item:nth-child(2) {
  animation-delay: 0.4s;
}

.dropdown.show .dropdown-menu .dropdown-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes itemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-weight: 500;
  color: #000;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border: 1px dashed black;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
  color: #0055ff;
}

.apply-btn {
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 700;
  border: none;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background-color: #ffd900;
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .angle-logo {
    clip-path: none;
    justify-content: center;
    padding: 10px 20px;
  }

  .angle-logo img {
    height: 40px;
  }

  .main-navbar .nav-link {
    margin: 10px 0;
  }

  .offcanvas .nav-link {
    font-size: 1.2rem;
    border-bottom: 1px solid black;
    color: #000;
  }

  .offcanvas .dropdown-menu {
    background: transparent;
    box-shadow: none;
  }

  .offcanvas .dropdown-menu .dropdown-item {
    padding: 0;
    color: #000;
    padding-top: 20px;
    padding-bottom: 10px;
    border: none;
    border-bottom: 1px dashed black;
  }

  .offcanvas .apply-btn {
    margin-top: 15px;
    width: 100%;
    background-color: #ffd900 !important;
    width: 50%;
  }

  .main-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: none;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }

}

.offcanvas {
  width: 100% !important;
}

.hero-carousel {
  position: relative;
}

.carousel-inner {
  height: 100vh;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-item:nth-child(1) {
  background-image: url('../img/Web-development-Carousel-Banner.png');
}

.carousel-item:nth-child(2) {
  background-image: url('../img/SEO-site-Banner.png');
}

.carousel-item:nth-child(3) {
  background-image: url('../img/Web-design-Carousel-Banner.png');
}

@media (max-width: 992px) {
  .carousel-item:nth-child(1) {
    background-image: url('img/Final-Year-Project-Training-Tablet.png');
  }

  .carousel-item:nth-child(2) {
    background-image: url('img/SEO-Tablet.png');
  }

  .carousel-item:nth-child(3) {
    background-image: url('img/Web-design-Tablet.png');
  }
}

@media (max-width: 576px) {
  .carousel-item:nth-child(1) {
    background-image: url('../img/6412173.jpg');
  }

  .carousel-item:nth-child(2) {
    background-image: url('../img/5261911.jpg');
  }

  .carousel-item:nth-child(3) {
    background-image: url('../img/59271.jpg');
  }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('../img/hero_overlay_6.webp');
  background-color: rgba(128, 128, 128, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 3;
}

.carousel-caption-box {
  color: white;
  max-width: 600px;
  padding: 40px;
  animation: fadeInUp 1.5s ease;
  margin-left: 3rem;
}

.carousel-caption-box h1 {
  font-size: 3.7rem;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.carousel-caption-box p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 10px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: flex;
  align-items: center;
}

.carousel-caption-box .btn {
  margin-top: 20px;
  margin-right: 10px;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 8px;
}

.carousel-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: rgba(128, 128, 128, 0.3);
  border-radius: 6px;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  min-width: 36px;
  min-height: 36px;
}

.custom-carousel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: #737576;
  border-radius: 5%;
  color: white;
  font-size: 1.7rem;
  transition: background-color 0.3s, transform 0.3s;
}

.true-btn {
  background-color: #2667dd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-right: 10px;
}

.custom-carousel-icon:hover {
  background-color: #0d6efd;
  transform: scale(1.1);
}

.carousel-controls-right {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-controls-right .carousel-control-prev,
.carousel-controls-right .carousel-control-next {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.one-line-d-flex {
  display: flex;
}

.ms-res-5 {
  margin-left: 3rem;
}

@media (max-width: 767.98px) {
  .carousel-caption-box {
    padding: 0;
    margin-left: 10px;
    margin-right: 0;
    max-width: 100%;
  }

  .carousel-caption-box h1 {
    font-size: 2.2rem;
  }

  .carousel-caption-box p {
    font-size: 1rem;
  }

  .carousel-caption-box .btn {
    padding: 8px 20px;
    font-size: 0.95rem;
    width: 50%;
  }

  .carousel-controls-right {
    display: none;
    visibility: hidden;
  }

  .carousel-inner {
    height: 450px;
  }

  .carousel-item {
    height: 100%;
    padding-bottom: 10px;
  }

  .one-line-d-flex {
    display: block;
    margin-top: 19px;
  }

  .ms-res-5 {
    margin-left: 0;
  }
}

.training-section {
  background-image: url(../img/about_bg_1.webp);
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  background-position: bottom right;
}

.training-image img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.training-image-2 img {
  border-radius: 12px;
  width: 600px;
  height: 400px;
}

.corporate-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .training-image-2 img {
    width: 100%;
    height: auto;
  }
}

.training-content-none h2 {
  font-weight: 500;
  font-size: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.training-content-none p {
  color: #555;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.training-content h2 {
  font-weight: 500;
  font-size: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.training-content h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #0055ff;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.training-content p {
  color: #555;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.stats-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  flex-grow: 0;
}

.stats-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stats-box i {
  font-size: 2.4rem;
  color: #2a7aff;
  animation: pulseIcon 3s ease-in-out infinite;
  transition: color 0.6s ease;
}

.stats-box:hover i {
  color: #1a6ffb;
  animation: bounceSmooth 1s ease-in-out;
}

.stats-box div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.stats-box h5 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2a7aff;
  margin: 0;
  line-height: 1.2;
}

.stats-box p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  line-height: 1.2;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceSmooth {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .stats-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
  }

  .stats-box div {
    text-align: center;
  }

  .stats-box i {
    font-size: 3rem;
  }

  .stats-box h5 {
    font-size: 2rem;
  }

  .stats-box p {
    font-size: 1rem;
  }
}

.demo-session-banner-wrapper {
  position: relative;
  background-image: url('../img/off.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  color: white;
  padding: 40px;
  overflow: hidden;
}

.demo-session-banner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/hero_overlay_6.webp');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 768px) {
  .demo-session-banner-wrapper {
    padding: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.demo-session-banner-content {
  position: relative;
  z-index: 2;
}

.demo-session-banner-content h2 {
  font-weight: 600;
  font-size: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.demo-session-banner-content p {
  margin-top: 10px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.demo-session-banner-btn {
  background-color: white;
  color: #000;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.demo-session-banner-btn:hover {
  background-color: #133349;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-btns .btn {
  border-radius: 25px;
  padding: 6px 20px;
  margin: 5px;
  font-weight: 500;
  background-color: white;
}

.tab-btns .btn:hover {
  background-color: #256DFF;
  color: #fff;
}

.tab-btns .btn.active {
  background-color: #256DFF;
  color: #fff;
}

.course-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.5s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-card h6 {
  font-size: 1.4rem;
  padding-bottom: 20px;
  border-bottom: 1px dashed black;
  color: black;
}

.course-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.course-card {
  position: relative;
}

.course-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
}

.tab-content .tab-pane {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.load-more {
  text-align: center;
  margin-top: 30px;
}

.extra-courses {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: none;
}

.extra-courses.visible {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

#loadMoreBtn {
  background: linear-gradient(to right, #256DFF, #00C6FF);
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

#loadMoreBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.course-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: black;
}

.bg-course {
  background-color: #f3f7fb;
}

.training-heading-h2 {
  font-weight: 500;
  font-size: 2.3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.training-heading-h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #0055ff;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.tag-hed {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0d5ef4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  display: block;
}

.custom-testimonial {
  background: #f5faff;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.custom-testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-testimonial-img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  border-radius: 30px;
  margin-right: 15px;
}

.custom-testimonial p {
  font-size: 1.2rem;
}

.custom-testimonial .name-stars {
  border-top: 1px solid #e1eaf0;
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-testimonial .star {
  color: #007bff;
}

.custom-dots {
  text-align: center;
  margin-top: 50px;
}

.custom-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  border: 2px solid #007bff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.custom-dot.active {
  background-color: #007bff;
}

.home-form-main-container {
  background-image: url(../img/admission-bg1.webp);
  display: flex;
  width: 100%;
}

.home-form-single-image-container {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.home-form-single-image-container img {
  width: 100%;
  display: block;
  height: 600px;
}

.home-form-right-section {
  padding: 40px;
  color: #fff;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-form-right-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.home-form-right-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.form-control {
  background-color: #1a2a3f;
  border: 1px solid #33445e;
  color: #fff;
  border-radius: 6px;
  padding: 12px 15px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  background-color: #1a2a3f;
  color: #fff;
  border-color: #5b84ff;
  box-shadow: 0 0 0 0.25rem rgba(91, 132, 255, 0.25);
}

.form-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input {
  border-color: #33445e;
  background-color: #1a2a3f;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767.98px) {
  .home-form-main-container {
    flex-direction: column;
  }

  .home-form-left-section,
  .home-form-right-section {
    width: 100%;
  }

  .home-form-single-image-container {
    display: block;
    visibility: visible;
    width: 100%;
  }

  .home-form-single-image-container img {
    display: block;
    visibility: visible;
    width: 100%;
    height: auto;
  }

  .home-form-right-section {
    padding: 30px 20px;
    text-align: center;
  }

  .home-form-right-section h1 {
    font-size: 1.8rem;
  }

  .home-form-right-section p {
    font-size: 0.95rem;
  }

  .btn-primary {
    width: 100%;
  }
}


.why-chs-home-image-card-1 {
  border-radius: 15px;
  width: 48%;
  height: 450px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-chs-home-image-card-2 {
  border-radius: 15px;
  width: 48%;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pergraph-txt {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 767.98px) {
  .why-chs-home-image-card-1 {
    display: none;
    visibility: hidden;
  }

  .why-chs-home-image-card-2 {
    display: none;
    visibility: hidden;
  }
}

.why-chs-home-text-blue-check::before {
  content: '✔ ';
  color: #007bff;
}

.why-chs-home-text-blue-check {
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.why-chs-home-btn-primary-custom {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  border: none;
}

.why-chs-home-btn-primary-custom:hover {
  background: linear-gradient(90deg, #2a5298, #1e3c72);
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .sm-img-hide {
    display: none;
    visibility: hidden;
  }
}

.ace-footer {
  background-color: #0b1e3b;
  font-size: 15px;
  line-height: 1.8;
}

.footer-heading {
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid #0b93f8;
  display: inline-block;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #0b93f8;
  padding-left: 5px;
}

.footer-desc {
  color: #bbb;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  background-color: #1c2c4a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background-color: #0b93f8;
  transform: scale(1.1);
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #256dff;
  margin-bottom: 40px;
}

.custom-title {
  font-size: 1.8rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  color: black;
  margin-bottom: 30px;
}

.client-logo-carousel img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.client-logo-carousel img:hover {
  transform: scale(1.1);
}

.owl-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blockchain-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.blockchain-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #0f2239;
  opacity: 0.8;
  z-index: 1;
}

.blockchain-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/breadcumb_shape_1_1.png') no-repeat center center/cover;
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  color: #fff;
  animation: fadeInUp 1.2s ease-in-out;
}

.banner-content h1 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .banner-content h1 {
    font-size: 3rem;
  }
}

.icon-left,
.icon-right {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  z-index: 4;
}

.icon-left {
  left: 30px;
  animation: moveUpDown 3s infinite ease-in-out;
}

.icon-right {
  right: 30px;
  animation: moveLeftRight 4s infinite ease-in-out;
}

.icon-img {
  width: 90px;
  height: 60px;
}

.icon-img-2 {
  width: 40px;
  height: 60px;
}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }

  50% {
    transform: translateY(-50%) translateY(-15px);
  }
}

@keyframes moveLeftRight {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(15px);
  }
}

.contact-wrapper {
  position: relative;
  /* background-color: #eef4fd; */
}

.info-box {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 85, 255, 0.1);
}

.icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #e5efff;
  color: #256dff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.7rem;
}

.form-card {
  background-image: url(../img/contact_bg_1.png);
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.form-card h2 {
  font-size: 2.7rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.form-card p {
  font-size: 1.1rem;
}

.form-card .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 109, 255, 0.25);
  border-color: #256dff;
}

.btn-primary {
  background-color: #256dff;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0055ff;
  transform: scale(1.05);
}

.main-about-sec {
  background-color: #f4f8fb;
}

.main-about-sec-image-container img {
  width: 100%;
  height: 480px;
  border-radius: 10px;
}

.main-about-sec-image-container-2 img {
  width: 100%;
  height: 270px;
  border-radius: 10px;
}

.main-about-sec-gradient-box {
  background: linear-gradient(135deg, #4b7bec, #3a57e8);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-about-sec-gradient-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.main-about-sec-gradient-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out;
}

.main-about-sec-gradient-box:hover::before {
  width: 200%;
  height: 200%;
}

.main-about-sec-gradient-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.main-about-sec-gradient-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.main-about-sec-right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-about-sec-right h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 25px;
}

.main-about-sec-right p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.main-about-sec-education-types {
  margin-bottom: 30px;
}

.main-about-sec-education-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-about-sec-education-item:hover {
  transform: translateX(5px);
}

.main-about-sec-education-item svg {
  color: #3a57e8;
  font-size: 2.5rem;
}

.main-about-sec-education-item div {
  flex-grow: 1;
}

.main-about-sec-education-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #343a40;
}

.main-about-sec-education-item span {
  font-size: 0.95rem;
  color: #777;
}

.main-about-sec-features-list .main-about-sec-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #444;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.main-about-sec-features-list .main-about-sec-list-item:hover {
  color: #3a57e8;
  transform: translateX(5px);
}

.main-about-sec-features-list .main-about-sec-list-item svg {
  color: #28a745;
  margin-right: 12px;
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .main-about-sec-right h1 {
    font-size: 2rem;
  }

  .main-about-sec-right {
    padding: 0;
    margin-top: 50px;
  }

  .main-about-sec-image-container img {
    width: 100%;
    height: 100%;
  }

  .main-about-sec-image-container-2 img {
    width: 100%;
    height: 100%;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.4s ease, transform 0.3s ease, color 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  background-color: #0d6efd;
  transform: translateY(-5px);
  color: #fff;
}

.feature-card:hover h5,
.feature-card:hover p {
  color: #fff;
}

.feature-icon {
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 32px;
  margin-bottom: 20px;
  transition: background-color 0.4s ease;
}

.feature-card:hover .feature-icon {
  background-color: white;
  color: #0d6efd;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.4s ease;
  font-size: 1.4rem;
}

.feature-card p {
  color: #555;
  font-size: 1.1rem;
  transition: color 0.4s ease;
}

.stats-section {
  background-image: url(../img/counter-bg_1.png);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-item {
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 767.98px) {
  .stat-number {
    font-size: 2.8rem;
  }

  .stat-description {
    font-size: 1rem;
  }

  .stat-item {
    border-bottom: 1px dashed white;
  }
}

.pop-about-card {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: white;
}

.pop-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pop-about-blue {
  background: url('../img/pop-course-1.png') no-repeat right center;
  background-size: cover;
}

.pop-about-red {
  background: url('../img/pop-course-2.png') no-repeat right center;
  background-size: cover;
}

.pop-about-content {
  padding: 30px;
  width: 100%;
  z-index: 1;
}

.pop-about-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pop-about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.pop-about-btn {
  background-color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pop-about-card.pop-about-blue .pop-about-btn {
  color: #3370ff;
}

.pop-about-card.pop-about-red .pop-about-btn {
  color: #ff3333;
}

.pop-about-btn:hover {
  background-color: #f0f0f0;
}

.pop-about-card.pop-about-blue .pop-about-btn:hover {
  color: #2156cc;
}

.pop-about-card.pop-about-red .pop-about-btn:hover {
  color: #cc2121;
}

@media (max-width: 767.98px) {
  .pop-about-card {
    max-width: 100%;
  }

  .pop-about-blue {
    background: #2156cc;
  }

  .pop-about-red {
    background: #ff3333;
  }
}

.main-course-card {
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.image-box {
  position: relative;
  height: 220px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: #fff;
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.image-box:hover .overlay i {
  transform: scale(1.3);
}

.main-course-content {
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 15px;
  color: #003366;
  background: #fff;
}

.feature-section {
  background-color: #f3f7fb;
}

.feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 3px solid transparent;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 109, 255, 0.15) 0%, transparent 80%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}

.feature-box:hover {
  border-color: #256dff;
  box-shadow: 0 15px 40px rgba(37, 109, 255, 0.4);
}

.feature-box i {
  font-size: 42px;
  color: #256dff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.feature-box:hover i {
  color: #fff;
  background-color: #256dff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 0 25px #256dff;
}

.feature-box h5 {
  color: #256dff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.feature-box p {
  font-size: 15px;
  color: #333;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .feature-box {
    padding: 20px 15px;
  }

  .feature-box i {
    font-size: 36px;
  }
}

.faq-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-desc {
  color: #555;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.accordion-button {
  font-weight: 500;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 6px !important;
  border: 1px solid #ddd;
}

.accordion-button:hover {
  background-color: #256dff;
  color: #fff;
  transform: scale(1.01);
}

.accordion-button:not(.collapsed) {
  background-color: #256dff;
  color: #fff;
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 12px;
  border: none;
}

.accordion-body {
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

.faq-img {
  width: 400px;
  text-align: center;
  height: 400px;
  margin-top: 0;
  padding-top: 0;
}

.student-card {
  background: #0055ff;
  color: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 85, 255, 0.3);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  margin-top: 70px;
}

.student-card:hover {
  transform: rotateY(2deg) translateY(-12px) scale(1);
  box-shadow: 0 20px 40px rgba(0, 85, 255, 0.6);
}

.student-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 4px solid #ff9604;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.student-card:hover .student-img {
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 0 20px #fff;
}

.std-card-tb {
  margin-top: -80px;
}

.student-card h5 {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: color 0.4s;
}

.student-card:hover h5 {
  color: #ffe600;
}

.student-card p span {
  color: #ffea00;
  font-weight: 600;
  transition: color 0.3s;
}

.student-card:hover p span {
  color: #ffffff;
}

.student-card .company {
  color: #fffacd;
  font-style: italic;
}

.glow-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ffc107, #ff6a00, #ffc107);
  background-size: 200% auto;
  animation: glowing 3s linear infinite;
}

@keyframes glowing {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.text-gradient {
  background: linear-gradient(45deg, #0055ff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.placement-process-section .placement-card {
  background: #fff;
  padding: 25px 10px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.placement-process-section .placement-card .icon {
  font-size: 40px;
  background: linear-gradient(45deg, #0055ff, #00bfff);
  color: white;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 85, 255, 0.4);
  transition: all 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out;
}

.placement-process-section .placement-card p {
  font-size: 15px;
  font-weight: bold;
  color: #00337f;
  margin: 0;
  transition: color 0.3s ease;
}

.placement-process-section .placement-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #0055ff;
  box-shadow: 0 10px 20px rgba(0, 85, 255, 0.25);
  background: linear-gradient(145deg, #eaf2ff, #ffffff);
}

.placement-process-section .placement-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.6);
}

.placement-process-section .placement-card:hover p {
  color: #0055ff;
}

.placement-process-section {
  background-color: #f3f7fb;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.main-gallery-image-wrapper {
  padding: 30px;
}

.main-gallery-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.main-gallery-image-card img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: block;
}

.main-gallery-image-card:hover {
  transform: scale(1.02);
}

.main-gallery-image-overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 85, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: top 0.4s ease;
  border-radius: 10px;
  flex-direction: column;
  cursor: pointer;
}

.main-gallery-image-card:hover .main-gallery-image-overlay {
  top: 0;
}

.main-gallery-image-icon {
  font-size: 30px;
  animation: popIn 0.6s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.main-gallery-image {
  background: #fafafa;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid lightgray;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.main-gallery-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 85, 255, 0.15);
}

.main-gallery-image p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.main-gallery-image .role {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  margin-bottom: 2px;
}

.main-gallery-image .name {
  font-size: 16px;
  color: #ff7b00;
  font-weight: bold;
  margin-bottom: 2px;
}

.main-gallery-image .location {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.main-gallery-image .stars i {
  color: #ff9500;
  font-size: 14px;
}

.why-main-services-section {
  background-color: #f3f7fb;
}

.why-main-services {
  background-color: #f4f8fb;
}

.why-main-services-card {
  position: relative;
  background: #fff;
  padding: 60px 25px 25px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  overflow: visible;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.why-main-services-card:hover {
  border-color: #000;
  transform: translateY(-8px);
}

.why-main-services-icon {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #000;
  transition: all 0.3s ease;
  z-index: 1;
}

.why-main-services-card:hover .why-main-services-icon {
  transform: rotate(15deg) scale(1.1);
  background-color: #0055ff;
  box-shadow: 0 0 20px #0055ff;
}

.why-main-services-card p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.why-main-services {
  position: relative;
}

.training-track {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  position: relative;
}

.training-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background-color: #0044cc;
  border-radius: 10px;
  z-index: 0;
}

.training-item {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.training-item:nth-child(even) {
  justify-content: flex-end;
  margin-left: -60px;
}

.training-item:nth-child(odd) {
  justify-content: flex-start;
  margin-right: -60px;
}

.training-icon {
  background-color: #0044cc;
  color: white;
  font-size: 32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  box-shadow: 0 0 30px rgba(0, 68, 204, 0.4);
  transition: transform 0.3s ease;
}

.training-content-modual {
  background: #ffffff;
  padding: 18px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.5rem;
  color: #002244;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.training-item:hover .training-icon {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .training-track {
    flex-direction: column;
    align-items: center;
  }

  .training-item {
    width: 100%;
    justify-content: center !important;
    flex-direction: column;
    text-align: center;
  }

  .training-icon {
    margin: 0 auto 15px;
  }

  .training-content-modual {
    margin: 0 auto;
  }

  .training-line {
    display: none;
  }

  .training-item:nth-child(even) {
    margin-left: 0;
  }

  .training-item:nth-child(odd) {
    margin-right: 0;
  }

  .faq-img {
    width: 100%;
  }

}


@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.join-section {
  background: linear-gradient(135deg, #0a0e2a 0%, #001a3a 100%);
}

.join-box {
  background-color: #0d172b;
  color: #ffffff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 1.15rem;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.1);
}

.join-box::before,
.join-box::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: rgba(0, 85, 255, 0.1);
  transform: rotate(45deg);
  top: -80%;
  left: -30%;
  transition: all 0.5s ease;
  z-index: 0;
}

.join-box::after {
  background: rgba(0, 85, 255, 0.15);
  top: auto;
  bottom: -80%;
  left: auto;
  right: -30%;
}

.join-box:hover {
  background-color: #001c40;
  color: #fff;
  transform: translateY(-8px) scale(1.02);
  border-color: #0055ff;
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.5);
}

.join-box:hover::before {
  top: 0;
  left: 0;
}

.join-box:hover::after {
  bottom: 0;
  right: 0;
}

.join-box span {
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .join-title {
    font-size: 2rem;
  }
}

.custom-nav-wrapper {
  position: absolute;
  right: 10px;
  background: #fff;
  border-radius: 4px;
  gap: 8px;
  display: flex;
  overflow: hidden;
  z-index: 1000;
}

.custom-nav-wrapper button {
  background: #ffd000;
  border: none;
  color: #000;
  width: 35px;
  height: 35px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-dots {
  display: none !important;
}

.bg-releted-course {
  background-color: #f4f8fb;
}

.course-section {
  background-color: #f1f1f1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-badge {
  background: #ffffff;
  width: 200px;
  height: 200px;
  border-radius: 50% 0 50% 0;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed gray;
  transition: 0.3s ease-in-out;
}

.course-badge:hover {
  background: #0055ff;
  transform: rotate(1deg) scale(1.04);
}

.course-badge h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #003366;
  margin: 0;
}

.course-badge:hover h5 {
  color: white;
}

.badge-number {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #0055ff;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.course-badge:hover .badge-number {
  background: white;
  color: black;
  border: 1px dashed gray;
}

.course-image {
  max-width: 100%;
}

@media (max-width: 768px) {
  .course-heading {
    font-size: 2rem;
  }

  .course-badge {
    width: 140px;
    height: 140px;
  }
}

.std-10-section {
  background: #fffde7;
}

.std-10-card {
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.3s ease;
}

.std-10-card:hover {
  transform: translateY(-4px);
}

.std-10-card-1 {
  background-color: #0055ff;
}

.std-10-card-2 {
  background-color: #28a745;
}

.std-10-card-3 {
  background-color: #ff5733;
}

.std-10-card-4 {
  background-color: #6f42c1;
}

.std-10-number {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
}

.std-10-title {
  font-size: 18px;
}

.std-10-feature-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.std-10-feature {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #0055ff;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.std-10-feature:hover {
  background-color: #0055ff;
  color: #fff;
}

.std-10-icon {
  background-color: #0055ff;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.std-10-feature:hover .std-10-icon {
  background-color: white;
  color: #0055ff;
}

.std-10-text {
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .std-10-feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .std-10-icon {
    margin-bottom: 10px;
  }
}

.what-we-provide-fnl-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px 20px;
  border: 2px dashed black;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.what-we-provide-fnl-card:hover {
  transform: translateY(-10px);
  border-color: #00f0ff;
  border: none;
  box-shadow: 0 0 25px #00e0ffb0;
}

.what-we-provide-fnl-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #007bff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.what-we-provide-fnl-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.what-we-provide-fnl-row {
  margin-top: 50px;
}

.acdemy-taining-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.acdemy-taining-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
}

.acdemy-taining-image-box {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.acdemy-taining-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.acdemy-taining-content {
  padding: 25px;
  text-align: center;
}

.acdemy-taining-title-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.acdemy-taining-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .acdemy-taining-title {
    font-size: 24px;
  }
}

.academy-training-card {
  background: #f5f9ff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid gray;
}

.academy-training-card:hover {
  transform: translateY(-10px);
  border-color: #007bff;
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.25);
  background-color: white;
  border: none;
}

.academy-training-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #007bff;
  transition: 0.3s ease-in-out;
}

.academy-training-card:hover .academy-training-icon {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}

.academy-training-title {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}

.wcus_block_new {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/1.jpg);
}

.wcus_block_new-2 {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card-2 {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card-2::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/2.jpg);
}

.wcus_block_new-3 {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card-3 {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card-3::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/3.jpg);
}

.wcus_block_new-4 {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card-4 {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card-4::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/4.jpg);
}

.wcus_block_new-5 {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card-5 {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card-5::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/5.jpg);
}

.wcus_block_new-6 {
  border: 3px solid #3d0967;
  border-radius: 23px;
  height: 244px;
  position: relative;
}

.why-english-course-card-6 {
  position: relative;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-english-course-card-6::before {
  width: 197px;
  height: 158px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/6.jpg);
}

.why-english-course-text {
  position: relative;
  z-index: 3;
  margin-top: 100px;
  color: #000;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}

.spock-box {
  background-color: #b56bd2;
  padding: 53px 82px;
}

.spock-class-box {
  margin-bottom: 30px;
  gap: 20px;
}

@media (max-width: 576px) {
  .spock-box {
    padding: 10px;
  }
}

.spock-class-number {
  background-color: #ffb300;
  color: black;
  font-weight: bold;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
}

.spock-class-box h5 {
  font-size: 1.4rem;
  color: white;
}

.spock-class-box p {
  font-size: 1rem;
  color: white;
}

.custom-list-item i {
  color: #8959af;
  font-size: 1rem;
}

.custom-list-item-p {
  color: black;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.exam-course {
  width: 100%;
  height: 400px;
}

.spock-class-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #eee;
  transition: transform 0.3s ease;
}

.spock-class-item img:hover {
  transform: scale(1.1);
}

.spock-class-item {
  text-align: center;
  margin: 20px;
}

.spock-class-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.spock-class-dot {
  width: 30px;
  height: 5px;
  background-color: #5f2c91;
  border-radius: 5px;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.spock-class-dot.active {
  opacity: 1;
}

.spock-carousel .item {
  text-align: center;
}

.spock-carousel .item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto;
}

.spock-carousel .item p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #333;
}

.owl-dots {
  display: none !important;
}

.custom-dots-flag {
  width: 50px;
  height: 3px;
  background-color: #5f2c91;
  border-radius: 10px;
  opacity: 0.3;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-dots-flag.active {
  opacity: 1;
}

.why-spock-eng-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.why-spock-eng-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 123, 255, 0.2);
}

.why-spock-eng-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  transition: background 0.3s ease;
}

.why-spock-eng-card:hover .why-spock-eng-icon {
  background: #0056b3;
}

.why-spock-eng-heading {
  font-size: 20px;
  font-weight: 700;
  color: #002147;
  margin-bottom: 10px;
}

.why-spock-eng-text {
  font-size: 15px;
  color: #555;
}

.why-spock-eng-wrapper {
  background: #f3f7fb;
}

.english-level-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border-left: 10px solid #0d6efd;
  position: relative;
  overflow: hidden;
}

.english-level-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.english-level-icon {
  font-size: 48px;
  color: #0d6efd;
  margin-bottom: 20px;
  animation: bounceIn 1s;
}

.english-level-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003366;
}

.english-level-points {
  list-style: none;
  padding-left: 0;
}

.english-level-points li {
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.english-level-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-size: 14px;
}

.english-level-ribbon {
  position: absolute;
  top: 5px;
  right: -10px;
  background: #0d6efd;
  color: white;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .english-level-box {
    margin-bottom: 30px;
  }
}

.logo-container {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  width: 100%;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.logo-item img:hover {
  filter: grayscale(0%);
}

.placeholder-logo {
  width: 150px;
  height: 60px;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.image-section {
  width: 100%;
  height: 400px;
}

.content-section h5 {
  color: black;
  font-size: 2.3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-section .heighlits {
  color: #0055ff;
}

.content-section p {
  font-size: 1.1rem;
}

.why-chs-personalty-section {
  background-color: #f3f7fb;
}

.why-chs-personalty-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
}

.why-chs-personalty-card:hover {
  transform: translateY(-10px);
  border-color: #0d6efd;
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.2);
}

.why-chs-personalty-icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.why-chs-personalty-card h5 {
  font-weight: 700;
  color: #212529;
}

.why-chs-personalty-card p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.personality-faq .accordion-button {
  background: #fff;
  color: #000;
  font-weight: bold;
  border: none;
  font-size: 1.05rem;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
  padding: 1rem;
  transition: all 0.3s ease;
}

.personality-faq .accordion-button {
  font-size: 1.2rem;
}

.personality-faq .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}

.personality-faq .accordion-button:after {
  content: '\25B2';
  float: right;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.personality-faq .accordion-button.collapsed::after {
  content: '\25BC';
}

.personality-faq .toggle-text {
  color: #007bff;
  font-weight: 500;
  font-size: 0.95rem;
}

.personality-faq .accordion-body {
  background: none;
  border: none;
  padding: 1.25rem;
  color: #333;
  font-size: 1.1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #0055ff;
  font-weight: bold;
}

.personality-faq .accordion-button::after {
  display: none !important;
}

.personality-faq .custom-icon i {
  transition: transform 0.3s ease;
}

.personality-faq .accordion-button.collapsed .custom-icon i {
  transform: rotate(180deg);
}

.personality-faq {
  border: 1px solid #9AC6FF;
  border-radius: 7px;
  padding: 20px;
}

@media (max-width: 768px) {
  .personality-faq {
    padding: 20px;
  }

  .personality-faq .accordion-button {
    font-size: 1rem;
  }
}

.personality-faq .toggle-label {
  color: #1A73E8;
}

.personality-faq .custom-icon {
  color: #1A73E8;
}

.ready-pte-heading-primary {
  font-size: 2.5rem;
  color: #1a202c;
  line-height: 1.2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
}

.ready-pte-intro-paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  max-width: 550px;
}

.ready-pte-feature-card {
  border: solid 1px gray;
  margin: 0.5em 0;
  display: flex;
  padding: 20px;
  background: #FFFFFF;
  text-align: left;
  align-items: center;
  border-radius: 10px;
  flex-direction: row;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.ready-pte-feature-card:hover {
  transform: translateY(-3px);
}

.ready-pte-feature-icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #ebf8ff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.ready-pte-feature-icon {
  color: #3182ce;
  font-size: 2.6rem;
}

.ready-pte-feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.ready-pte-feature-description {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .ready-pte-heading-primary {
    font-size: 2.2rem;
  }

  .ready-pte-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .ready-pte-feature-icon-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.ready-pte-main-content-section {
  background-color: #f3f7fb;
}

.why-preparing-pte-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 3px 3px 32px rgba(0, 0, 0, .12);
  padding: 25px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.why-preparing-pte-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.why-preparing-pte-title i {
  color: #007bff;
  margin-right: 10px;
  font-size: 2rem;
}

.why-preparing-pte-text {
  font-size: 1.2rem;
  color: black;
}

.why-rota-pte-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 3px 3px 32px rgba(0, 0, 0, .1);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 280px;
  z-index: 1;
}

.why-rota-pte-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #005cff;
  transition: top 0.4s ease;
  z-index: 0;
}

.why-rota-pte-card:hover::before {
  top: 0;
}

.why-rota-pte-card .why-rota-pte-top-bar {
  height: 10px;
  width: 100%;
  background-color: #005cff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.why-rota-pte-icon {
  width: 60px;
  height: 60px;
  background-color: #005cff;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
}

.why-rota-pte-card h5,
.why-rota-pte-card p {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-rota-pte-card h5 {
  font-weight: 750;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.why-rota-pte-card p {
  font-size: 1.1rem;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
}

.why-rota-pte-card:hover h5,
.why-rota-pte-card:hover p,
.why-rota-pte-card:hover .why-rota-pte-icon {
  color: #fff;
}

.why-rota-pte-card:hover .why-rota-pte-icon {
  background: rgba(255, 255, 255, 0.2);
}

.why-rota-pte-card:hover .why-rota-pte-icon {
  background-color: #fff;
  color: #005cff;
}

.pte-score-card {
  background-color: #f3f7fb;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pte-score-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2196f3;
  margin-bottom: 15px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 15px;
}

.pte-score-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.pte-score-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pte-score-card {
    margin-bottom: 20px;
  }
}

.spoken-main>.nav-link {
  background-color: #ff6600;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.spoken-main>.nav-link:hover {
  background-color: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.course-cate-btn {
  position: relative;
  padding: 18px 40px;
  background-color: #0055ff;
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  overflow: hidden;
  z-index: 1;
  transform: skew(-2deg);
  box-shadow: 6px 6px 0 #222, 10px 10px 0 #555;
  transition: all 0.4s ease;
  width: 100%;
}

.course-cate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #d3e3ff;
  z-index: 0;
  transition: left 0.4s ease;
}

.course-cate-btn:hover::before {
  left: 0;
}

.course-cate-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.course-cate-btn:hover span {
  color: #003366;
}

.course-cate-btn:hover {
  box-shadow: 3px 3px 0 #222, 6px 6px 0 #555;
  transform: scale(1.05) skew(0deg);
}

.course-cate-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: #ddd;
  transform: skewX(-20deg);
  z-index: 0;
}

.course-cate-col {
  margin-bottom: 30px;
}

.sub-topic-box {
  background-color: #facc15;
  color: #000;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sub-topic-box:hover {
  background-color: #ffb300;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.sub-topic-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: #d97706;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.sub-topic-title {
  margin: 0;
  padding-left: 10px;
  z-index: 1;
  position: relative;
}

@media (max-width: 576px) {
  .sub-topic-box {
    padding: 18px;
  }
}

.bg-topic {
  background-image: url(../img/counter-bg_1.png);
}

.topic-hed {
  font-weight: 500;
  font-size: 2.3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.topic-hed::after {
  content: '';
  width: 80px;
  height: 4px;
  background: white;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.project-dev {
  background-color: #00d084;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
  font-size: 1.3rem;
}

.project-dev::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.6s ease;
  z-index: 0;
}

.project-dev:hover::before {
  left: 100%;
}

.project-dev:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px #ffffff70, 0 0 60px #ffffff40;
}

.course-contee {
  padding: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  border: none;
  background-color: #ff5722;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s ease;
}

.course-contee::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
  z-index: 0;
}

.course-contee:hover::before {
  width: 300%;
  height: 300%;
}

.course-contee span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.course-contee i {
  margin-right: 8px;
}

.course-contee:hover span {
  color: #ff5722;
}

.course-contee:hover {
  transform: scale(1.06);
}

.benifit-project-training-section {
  background: #f0f7ff;
}

.benifit-project-training-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 5px solid #0d6efd;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.1);
  transition: all 0.3s ease;
}

.benifit-project-training-box:hover {
  transform: translateY(-5px);
  border-left-color: #ff6600;
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.15);
}

.benifit-project-training-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: #e8f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0d6efd;
  margin-right: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.benifit-project-training-box:hover .benifit-project-training-icon {
  background-color: #ff6600;
  color: #fff;
}

.benifit-project-training-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.include-training {
  position: relative;
  padding: 20px;
  background: rgba(0, 0, 40, 0.5);
  border: 1px solid rgba(0, 85, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.1);
  color: #ffffff;
  transition: 0.4s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

.include-training::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, #0055ff 20%, transparent 40%, #0055ff 60%, transparent 80%);
  animation: rotate 5s linear infinite;
  z-index: 1;
}

.include-training::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #001030;
  border-radius: 18px;
  z-index: 2;
}

.include-training-content-modual {
  position: relative;
  z-index: 3;
  font-size: 1.05rem;
}

.include-training:hover {
  transform: scale(1.04);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.flexy-title-icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  align-items: center;
}

@media (max-width: 768px) {

  .flexy-title-icon {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    text-align: center;
  }

  .custom-nav-wrapper {
    margin-top: 40px;
    background: none;
    left: 45%;
  }

  .spoken-main>.nav-link:hover {
    background-color: #ffd900;
    color: white !important;
    transform: scale(1.05);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
}

.custom-cancel-btn {
  background-color: #db2c1b;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 1;
}

.custom-cancel-btn:hover {
  transform: scale(1.1);
}